home *** CD-ROM | disk | FTP | other *** search
- /*
- * (c) Copyright 1992 by Panagiotis Tsirigotis
- * All rights reserved. The file named COPYRIGHT specifies the terms
- * and conditions for redistribution.
- */
-
-
- /*
- * $Id: slog.h,v 1.2 1992/10/25 21:26:13 panos Exp $
- */
-
-
- struct syslog
- {
- int facility ;
- int default_level ;
- } ;
-
-
- struct syslog_parms
- {
- int n_xlogs ; /* # of xlogs using syslog */
- int logopts ; /* used at openlog */
- int facility ;
- char *ident ; /* used at openlog */
- int ident_is_malloced ;
- } ;
-
- #define SYSLOG( xp ) ((struct syslog *)xp->data)
-
-